home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Muzyka / Edytory sampli (probek dzwieku) / ZynAddSubFX_2.2.0 / Setup_ZynAddSubFX-2.2.0.exe / source code / Params / Presets.h < prev    next >
C/C++ Source or Header  |  2005-03-14  |  2KB  |  59 lines

  1. /*
  2.   ZynAddSubFX - a software synthesizer
  3.  
  4.   Presets.h - Presets and Clipboard management
  5.   Copyright (C) 2002-2005 Nasca Octavian Paul
  6.   Author: Nasca Octavian Paul
  7.  
  8.   This program is free software; you can redistribute it and/or modify
  9.   it under the terms of version 2 of the GNU General Public License 
  10.   as published by the Free Software Foundation.
  11.  
  12.   This program is distributed in the hope that it will be useful,
  13.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.   GNU General Public License (version 2) for more details.
  16.  
  17.   You should have received a copy of the GNU General Public License (version 2)
  18.   along with this program; if not, write to the Free Software Foundation,
  19.   Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  20.  
  21. */
  22.  
  23. #ifndef PRESETS_H
  24. #define PRESETS_H
  25.  
  26. #include "../Misc/XMLwrapper.h"
  27.  
  28. #include "PresetsStore.h"
  29.  
  30. class Presets{
  31.     public:
  32.     Presets();
  33.     virtual ~Presets();
  34.     
  35.         void copy(const char *name);//if name==NULL, the clipboard is used
  36.     void paste(int npreset);//npreset==0 for clipboard
  37.     bool checkclipboardtype();
  38.     void deletepreset(int npreset);
  39.  
  40.     char type[MAX_PRESETTYPE_SIZE];
  41.     void setelement(int n);
  42.     
  43.     void rescanforpresets();
  44.     
  45.     protected:
  46.     void setpresettype(char *type);
  47.     private:
  48.     virtual void add2XML(XMLwrapper *xml)=0;
  49.         virtual void getfromXML(XMLwrapper *xml)=0;
  50.     virtual void defaults()=0;    
  51.     virtual void add2XMLsection(XMLwrapper *xml,int n){};
  52.         virtual void getfromXMLsection(XMLwrapper *xml,int n){};
  53.         virtual void defaults(int n){};
  54.     int nelement;
  55. };
  56.  
  57. #endif
  58.  
  59.